home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / util4 / aman-115.lha / aman-1.15 / Source / aman.h < prev    next >
C/C++ Source or Header  |  1995-07-21  |  379b  |  22 lines

  1. #include <libraries/mui.h>
  2. #include <proto/muimaster.h>
  3. #include <clib/exec_protos.h>
  4. #include <exec/memory.h>
  5. #include <clib/alib_protos.h>
  6.  
  7. struct ObjApp
  8. {
  9.     APTR    App;
  10.     APTR    MN_aman;
  11.     APTR    WI_aman;
  12.     APTR    STR_pattern;
  13.     APTR    LV_aman;
  14. };
  15.  
  16. #define ID_ABOUT 1
  17. #define ID_SELECT 2
  18. #define ID_SUBJECT 3
  19.  
  20. extern struct ObjApp * CreateApp(void);
  21. extern void DisposeApp(struct ObjApp *);
  22.